home *** CD-ROM | disk | FTP | other *** search
- // ******************************************************************
- //
- // pictdlg.h : header file
- //
- // Most of this file is created by ClassWizard
- //
- // (C) 1993 POET Software
- //
- // ******************************************************************
-
- #include "..\resource.h" // resource IDs
- #include <bitmap.h> // header to bitmapclass
-
- #ifndef __PICTDLG_H__
- #define __PICTDLG_H__
-
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CShowPictDlg dialog
-
- class CShowPictDlg : public CDialog
- {
- private:
- Bitmap m_Bitmap; // Bitmapclass to show bitmaps
- PtBlob *m_pBlob; // Blob
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual void Init ();
-
- // Generated message map functions
- //{{AFX_MSG(CShowPictDlg)
- afx_msg void OnPaint(); // paint bitmap in dialogwindow
- virtual BOOL OnInitDialog(); // prepaire bitmap
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- CShowPictDlg(CWnd* pParent, PtBlob *pBlob); // extended constructor, PtBlob added to
- // ClassWizards standard constructor
- ~CShowPictDlg () {}
-
- // Dialog Data
- //{{AFX_DATA(CShowPictDlg)
- enum { IDD = IDR_SHOW_PICT };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- };
-
- #endif // __PICTDLG_H__